@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Staatliches&display=swap');
body{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

header{
  z-index: 2000;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  height: 6rem;

}
.brand{
  max-width: 60%;
}
.brand img{
  max-width: 45%;
  margin-top: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-left: 2.5%;
}
.main-contentH{
  margin-top: 12px;
  margin-right: 20px;
  float: right;
  width: 35%;
  display: flex;
  justify-content: space-around;
}
.containerH{
  color: #111;
  display: flex;
}
.containerH .boxX{
  text-align: center;
}
.containerH .boxX .iconX i{
  position: relative;
  background-color: #e9781c;
  padding: .25rem .5rem .25rem .5rem;
  border: 1px solid #e9781c;
  border-radius: 8px;
  color: #fff;
  justify-content: center;
  align-items: center;
}
.containerH .boxX .iconX h3,
.containerH .boxX .iconX h4{
  position: relative;
  /*font-weight: 400px;*/
  margin: 0;
  padding: 0px 3px;
  font-size: 16px;
}
.containerH .boxX .iconX h3{
  font-weight: bold;
}
.containerH .boxX .iconX h4{
  font-weight: 600;
  margin: 3px 0;
  font-style: 18px;
}
@media screen and (max-width: 900px){
  header{
    height: 4.5rem;
    align-items: center;
  }
  .brand{
    width: 100%;
  }
  .brand img{
    min-width: 280px;
  }
  .main-contentH{
    display: none;
  }
}
@media screen and (max-width: 900px) and (orientation:landscape){
  header{
    height: 5rem;
  }
  .brand img{
    min-width: 60%;
  }
}

nav{
  position: sticky;
  top:0;
  z-index: 999;
  width: 100%;
  background: #242526;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  background: #242526;
  padding: 0px 10px;
  height: 70px;
  line-height: 70px;
  border: none;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #242526/*#f2f2f2*/;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
  color: #e9781c;
}
.nav-links .mobile-item{
  display: none;
}

.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 72px;
  opacity: 1;
  visibility: visible;
}

.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(30% - 10px);
  line-height: 45px;
}

.content .row .header{
  color: #e9781c/*#f2f2f2*/;
  background: #242526;
  font-size: 18px;
  font-weight: 500;

}

.content .row .header a{
  text-decoration: none;
  color:#e9781c;
  background: #242526;
  padding: 0;
  font-size: 22px;
  line-height: 1.4;
  text-transform: capitalize;
}
.content .row .mega-links{
  padding-top: 0;
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
  line-height: 30px;
}
.row .mega-links li a{
  text-transform: capitalize;
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 18px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  nav .wrapper{
    height: 45px;
  }
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 420px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 0px;
    line-height: 30px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 10px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 10px 0px 0 10px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 10px;
  }
  .row .mega-links li{
    font-size: 16px;
    margin: 0;
  }
  .content .row .header{
    font-size: 18px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 970px) and (orientation:landscape){
  .wrapper .nav-links{
    max-width: 900px;
  }
}
nav input{
  display: none;
}

.banner{
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.1)),url("banner2.jpg");
  background-size:  cover;
  background-repeat: no-repeat;
  position: relative;
  padding: .5rem .5rem .5rem .5rem;
  min-width: 100%;
  min-height: 75vh;
}

.banner-content{
  color: #fff;
  width: 55%;
  padding-top: 170px;
}

.banner-content span{
  padding-left: 3rem;
  font-size:20px;
  font-weight: 500;
  letter-spacing: 1px;
}

.banner-content h1{
  padding-left: 3rem;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: 'Merriweather', serif;
}

.banner-content p{
  padding-left: 3rem;
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 1px;
  font-style: italic;
}

.banner-content a{
  text-decoration: none;
  margin-right: 20px;
}

.banner-content .btn-one{
  margin-left: 3rem;
  padding: 10px 30px;
  background-color: rgba(0,0,0,0.3);
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 18px;
  font-weight: italic;
  font-size: italic;
  color: #fff;
}

.banner-content .btn-two{
  /*margin-left: 3rem;*/
  padding: 10px 30px;
  background-color:#fff;
  border: 2px solid #000;
  border-radius: 10px;
  font-size: 18px;
  font-weight: italic;
  font-size: italic;
  color: #000;
}

.banner-content .btn-one:hover{
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
}

.banner-content .btn-two:hover{
  background-color: #000;
  border: 2px solid #fff;
  color: #fff;
}

@media(max-width: 900px){
  .banner{
    max-height: 10vh;
  }
  .banner-content{
    width: 100%;
    padding-top: 1rem;
  }
  .banner-content span{
    padding-left: 1rem;
    padding-bottom: .5rem;
    font-size:14px;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .banner-content h1{
    padding-left: 1rem;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;

  }

  .banner-content p{
    padding-left: 1rem;
    margin-bottom: 40px;
    font-size: 18px;
    letter-spacing: 1px;
    font-style: italic;
  }

  .banner-content a{
    margin-right: 0;
    /*margin-right: 10px;*/
  }

  .banner-content .btn-one{
    margin-left: 0rem;
    padding: 5px 10px;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid #fff;
    border-radius: 10px;
    font-size: 14px;
  }

  .banner-content .btn-two{
    /*margin-left: 3rem;*/
    padding: 5px 10px;
    background-color:#fff;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 14px;

  }
}

.head-top{
  padding-top: 2rem;
  font-size: 40px;
  font-weight: 600;
  justify-content: center;
  text-align: center;
}

.containerG{
  position: relative;
  margin-top: 1rem;
  margin-bottom: 2rem;
  width: 1200px;
  min-height: 1000px;
  margin: 80px auto 0;
}

.containerG .box{
  position: relative;
  width: calc(400px - 30px);
  height: calc(400px - 30px);
  background: #000;
  float: left;
  margin: 15px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.8);
}

.containerG .box:before{
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  box-sizing: border-box;
  transition: 0.5s;
  transform: scaleY(0);
  opacity: 0;
  z-index: 1;
}

.containerG .box:before{
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  box-sizing: border-box;
  transition: 0.5s;
  transform: scaleY(0);
  opacity: 0;
  z-index: 1;
}

.containerG .box:hover:before{
  transform: scaleX(1);
  opacity: 1;
}

.containerG .box:hover:after{
  transform: scaleY(1);
  opacity: 1;
}

.containerG .box .imgBox{
  position: relative;

}

.containerG .box .imgBox img{
  width: 100%;
  align-items: center;
  transition: 0.5s;
}

.containerG .box:hover .imgBox img{
  opacity: .2;
  transform: scale(1.2);
}

.containerG .box .content{
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.containerG .box .content h2{
  margin: 0 0 10px;
  padding: 0;
  color: #fff;
  transition: 0.5s;
  transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
}

.containerG .box .content p{
    margin: 0;
    padding: 0;
    color: #fff;
    transition: 0.5s;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
}
.containerG .box .content .cta{
  display: inline-block;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 400;
  /*background: #111;*/
  color: #fff;
  padding: .5rem 1rem;
  margin-top: 2rem;
  transition: 0.5s;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
}
.containerG .box .content .cta:hover{
  border: 3px solid #fff;
  background: #111;
  color: #fff;


}

.containerG .box .content:hover h2,
.containerG .box .content:hover p,
.containerG .box .content:hover .cta{
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 0.2s;
}
@media (max-width: 1200px){
  .containerG{
    width: 800px;
    height: auto;
    margin:  80px auto 80px;
  }
  .containerG .box{
    width: calc(400px - 30px);
    height: calc(300px - 30px);
  }
}
@media (max-width: 800px){
  .containerG{
    width: 600px;
    height: auto;
    margin:  80px auto 80px;
  }
  .containerG .box{
    width: calc(300px - 30px);
    height: calc(225px - 30px);
  }
  .containerG .box .content:hover h2{
    font-size: 22px;
  }
  .containerG .box .content:hover .cta{
    font-size: 14px;
    margin-top: .5rem;
  }
}
@media (max-width: 600px){
  .containerG{
    width: 100%;
    height: auto;
    margin:  80px auto 80px;
  }
  .containerG .box{
    width: calc(300px - 30px);
    height: calc(225px - 30px);
    margin: 15px auto;
    float: none;
  }
}

.footer footer{
  position: relative;
  left: 0;
  bottom: 0px;
  width: 100%;
  background: #111;

}
.footer footer .main-contentF{
  color: #e9781c;
  display: flex;
}
.footer footer .main-contentF .boxF{
  flex-basis: 50%;
  padding: 10px 20px;
}
.footer footer .boxF h2{
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.footer footer .boxF .contentF{
  margin: 20px 0 0 0;
  position: relative;
}
.footer footer .boxF .contentF:before{
  position: absolute;
  content: '';
  top: -10px;
  height: 2px;
  width: 100%;
  background: #1a1a1a;
}
.footer footer .boxF .contentF:after{
  position: absolute;
  content: '';
  height: 2px;
  width: 15%;
  background: #f12020;
  top: -10px;
}
.footer footer .leftF .contentF p{
  text-align: justify;
}
.footer footer .leftF .contentF ul li{
  font-size: 17px;
  margin-left: 3%;
  margin-bottom: 2px;
}
.footer footer .leftF .contentF ul a{
  text-decoration:none;
  outline: none;
  color: #fff;
  transition: 0.3s
}
.footer footer .leftF .contentF ul a:hover{
  color: #f12020;
}
.footer footer .leftF .contentF .social{
  margin: 20px 0 0 0;
}
.footer footer .leftF .contentF .social a{
  padding: 0 5px;
}
.footer footer .leftF .contentF .social a i{
  height: 40px;
  width: 40px;
  color: #fff;
  /*background: #e9781c;*/
  line-height: 55px;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}
/*.footer footer .leftF .contentF .social a i:hover{
  background: #f12020;
}*/
.footer footer .centerF .contentF i{
  font-size: 1.46rem;
  color: #fff;
  /*background: #e9781c;*/
  height: 50px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}
/*.footer footer .centerF .contentF i:hover{
  background: #f12020;
}*/
.footer footer .centerF .contentF .text1{
  font-size: 1.0625rem;
  font-weight: 500;
  padding-left: 10px;
  color: #fff;
}
.footer footer .centerF .contentF .phone{
  margin: 15px 0;
}
.footer footer .rightF form .text1{
  font-size: 1.0625rem;
  margin-bottom: 2px;
  color: #fff/*#656565*/;
}
.footer footer .rightF form .msg{
  margin-top: 10px;
}
.footer footer .rightF form input, .footer footer .rightF form textarea, .rightF form .msgForm{
  width: 100%;
  font-size: 1.0625rem;
  background: #fff;
  padding-left: 10px;
  border: 1px solid #222222;
}
.footer footer .rightF form input:focus,
.footer footer .rightF form textarea:focus,
.footer footer .rightF form .msgForm:focus{
  outline-color: #3498db;
}
.footer footer .rightF form input{
  height: 35px;
}
.footer footer .rightF form textarea{
  height: 35px;
  resize: none;
}
.footer footer .rightF form .btnF{
  margin-top: 10px;
}
.footer footer .rightF form .btnF button{
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background: #e9781c;
  font-size: 1.0625rem;
  font-weight: 500;
  cursor: pointer;
  transition: .3s;
}
.footer footer .rightF form .btnF button:hover{
  color: #fff;
  background: #333;
}
.footer footer .bottomF center{
  padding: 5px;
  font-size: 0.9375rem;
  /*background: #fff;*/
}
.footer footer .bottomF center span{
  color: #fff;
}
.footer footer .bottomF center a{
  color: #e9781c;
  text-decoration: none;
}
.footer footer .bottomF center a:hover{
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  footer{
    position: relative;
    bottom: 0px;
  }
  .main-contentF{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-contentF .boxF{
    margin: 5px 0;
  }
}
